+++ /dev/null
-#
-#
-# This is free software, licensed under the Apache License, Version 2.0 .
-#
-
-include $(TOPDIR)/rules.mk
-
-LUCI_TITLE:=Cloudshark capture tool Web UI
-LUCI_DEPENDS:=+luci-base +luci-compat +cshark
-
-PKG_LICENSE:=Apache-2.0
-
-include ../../luci.mk
-
-# call BuildPackage - OpenWrt buildroot signature
+++ /dev/null
---[[
-LuCI - Lua Configuration Interface
-
-Copyright (C) 2014, QA Cafe, Inc.
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-]]--
-
-module("luci.controller.cshark", package.seeall)
-
-function index()
- page = node("admin", "network", "cloudshark")
- page.target = cbi("admin_network/cshark")
- page.title = _("CloudShark")
- page.order = 70
- page.acl_depends = { "luci-app-cshark" }
-
- page = entry({"admin", "network", "cshark_iface_dump_start"}, call("cshark_iface_dump_start"), nil)
- page.acl_depends = { "luci-app-cshark" }
- page.leaf = true
-
- page = entry({"admin", "network", "cshark_iface_dump_stop"}, call("cshark_iface_dump_stop"), nil)
- page.acl_depends = { "luci-app-cshark" }
- page.leaf = true
-
- page = entry({"admin", "network", "cshark_check_status"}, call("cshark_check_status"), nil)
- page.acl_depends = { "luci-app-cshark" }
- page.leaf = true
-
- page = entry({"admin", "network", "cshark_link_list_get"}, call("cshark_link_list_get"), nil)
- page.acl_depends = { "luci-app-cshark" }
- page.leaf = true
-
- page = entry({"admin", "network", "cshark_link_list_clear"}, call("cshark_link_list_clear"), nil)
- page.acl_depends = { "luci-app-cshark" }
- page.leaf = true
-end
-
-function cshark_iface_dump_start(ifname, value, flag, filter)
- if ifname == nil or ifname == '' then
- ifname = 'any'
- end
- if tonumber(value) == nil
- then
- value = '0'
- end
- if filter == nil or filter == '' then
- filter = ''
- end
-
- if flag == nil or flag == '' then
- filter = 'T'
- end
-
- luci.http.prepare_content("text/plain")
-
- local res = os.execute("(/sbin/cshark -i %s -%s %s -p /tmp/cshark-luci.pid %s > /tmp/cshark-luci.out 2>&1) &" %{
- luci.util.shellquote(ifname),
- luci.util.shellquote(flag),
- luci.util.shellquote(value),
- luci.util.shellquote(filter)
- })
-
- luci.http.write(tostring(res))
-end
-
-function cshark_iface_dump_stop()
- luci.http.prepare_content("text/plain")
-
- local f = io.open("/tmp/cshark-luci.pid", "rb")
- local pid = f:read("*all")
- io.close(f)
-
- local res = os.execute("kill -TERM " .. pid)
- luci.http.write(tostring(res))
-end
-
-function cshark_check_status()
-
- local msg = "";
- local status;
- local f = io.open("/tmp/cshark-luci.pid","r")
- if f ~= nil then
- status = 1;
- io.close(f)
- else
- status = 0;
- end
-
- f = io.open("/tmp/cshark-luci.out","r")
- if f ~= nil then
- msg = f:read("*all")
- io.close(f)
- if msg ~= '' then
- os.remove('/tmp/cshark-luci.out')
- end
- end
-
- luci.http.prepare_content("application/json")
-
- local res = {}
- res["status"] = status;
- res["msg"] = msg;
-
- luci.http.write_json(res)
-end
-
-function cshark_link_list_get()
- local uci = require("uci").cursor()
-
- luci.http.prepare_content("application/json")
-
- luci.http.write("[")
-
- local t = uci:get("cshark", "cshark", "entry")
- if (t ~= nil) then
- for i = #t, 1, -1 do
- luci.http.write("[\"" .. t[i] .. "\"],")
- end
- end
-
- luci.http.write("[]]")
-end
-
-function cshark_link_list_clear()
- local uci = require("uci").cursor()
-
- uci:delete("cshark", "cshark", "entry")
- uci:commit("cshark");
-
- luci.http.status(200, "OK")
-end
+++ /dev/null
---[[
-LuCI - Lua Configuration Interface
-
-Copyright (C) 2014, QA Cafe, Inc.
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-$Id$
-]]--
-
-local fs = require "nixio.fs"
-
-m = Map("cshark", translate("CloudShark"))
-
-if fs.access("/etc/config/cshark") then
- m:section(SimpleSection).template = "cshark"
-
- s = m:section(TypedSection, "cshark", translate("Options"))
- s.anonymous = true
- s.addremove = false
-
- s:option(Value, "url", translate("CloudShark URL"))
- s:option(Value, "token", translate("CloudShark API token"))
-end
-
-return m
+++ /dev/null
-<%#
-LuCI - Lua Configuration Interface
-
-Copyright (C) 2014, QA Cafe, Inc.
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-$Id$
-
--%>
-
-<fieldset class="cbi-section">
- <legend><%:Start network capture%></legend>
- <div class="cbi-section-node">
- <table class="cbi-section-table">
- <tr>
- <th><%:Interface%></th>
- <th colspan='2'><%:seconds, packets, bytes%></th>
- <th><%:Filter%></th>
- <th><%:Actions%></th>
- </tr>
- <tr>
- <td>
- <select title="<%:Interface%>" style="width:auto" id="s_interfaces">
- <%
- local nixio = require "nixio"
- for k, v in ipairs(nixio.getifaddrs()) do
- if v.family == "packet" then
- %>
- <option value="<%=v.name%>"><%=v.name%> </option>
- <%
- end
- end
- %>
- <option value="any"><%:any%></option>
- </select>
- </td>
- <td colspan='2'>
- <input id="tx_value" type="text" value="0" />
- <select title="<%:timeout, bytes, seconds%>" id="s_value_type" style="width:auto">
- <option value="T"><%:seconds%></option>
- <option value="P"><%:packets%></option>
- <option value="S"><%:bytes%></option>
- </select>
- </td>
- <td>
- <input style="margin: 5px 0" type="text" title="<%:Filter%>" placeholder="filter" id="i_filter" />
- </td>
- <td>
- <input type="button" id="bt_action" data-action="start" value="<%:Start capture%>" class="cbi-button" />
- </td>
- </tr>
- </table>
- </div>
-</fieldset>
-
-<fieldset class="cbi-section">
- <span id="cshark-rc-output"></span>
-</fieldset>
-
-<hr/>
-
-<fieldset class="cbi-section">
- <legend><%:Capture links%></legend>
- <div class="cbi-section-node">
- <table id="t_link_list" class="cbi-section-table">
- <tr class="cbi-section-table-titles">
- <th class="cbi-section-table-cell"><%:Capture URL%></th>
- <th class="cbi-section-table-cell"><%:Capture time%></th>
- </tr>
- </table>
- </div>
-</fieldset>
-
-<fieldset class="cbi-section">
- <a href="https://support.cloudshark.org/openwrt/openwrt-cloudshark.html" target="_blank">Visit support.cloudshark.org for help.</a>
-</fieldset>
-
-<hr/>
-
-<script>
-
- var capture_running = 0;
- var pid_file = 0;
- var bt_action = document.getElementById('bt_action');
- var a_clear_links = document.getElementById('a_clear_links');
- var output = document.getElementById('cshark-rc-output');
- var loader = '<img src="<%=resource%>/icons/loading.svg" alt="<%:Loading%>" width="16" height="16" style="vertical-align:middle" /> ';
- var msg = { 'start' : '<%:Waiting for capture to complete...%>', 'stop' : '<%:Waiting for upload to complete...%>' };
- var status_msg = msg['start'];
-
- function get_date(timestamp)
- {
- function pad_str(str)
- {
- return (str < 10) ? "0" + str : str;
- }
-
- var current_date = new Date(timestamp * 1000);
- return current_date.getFullYear() + "-" +
- pad_str(current_date.getMonth() + 1) + "-" +
- pad_str(current_date.getDate()) + " " +
- pad_str(current_date.getHours()) + ":" +
- pad_str(current_date.getMinutes()) + ":" +
- pad_str(current_date.getSeconds());
- }
-
- bt_action.onclick = function()
- {
- var action = this.getAttribute("data-action");
- var csxhr = new XHR();
-
- if (action == "stop")
- {
- update_status(action);
-
- bt_action.disabled = true;
-
- csxhr.get('<%=luci.dispatcher.build_url("admin", "network")%>/cshark_iface_dump_stop', null,
- function(x)
- {
- if (!x || x.responseText.trim() != "0")
- {
- update_status("failed", "Invalid response on stop.");
- }
- });
-
- }
- else if (action == "start")
- {
-
- var s_interfaces = document.getElementById('s_interfaces');
- var s_value_type = document.getElementById('s_value_type');
- var i_filter = document.getElementById('i_filter');
-
- var if_n = s_interfaces.selectedIndex;
- var t_n = s_value_type.selectedIndex;
- var ifname = s_interfaces.options[if_n].value.trim();
- var filter_val = i_filter.value.trim();
- var tx_val = document.getElementById('tx_value').value.trim();
- var type_val = s_value_type.options[t_n].value.trim();
-
- if (type_val != 'P' && type_val != 'T' && type_val != 'S') type_val = 'T';
-
- if (!ifname || !type_val) return;
-
- if (isNaN(tx_val)) return alert("<%:value for [seconds, packets, bytes] must be Integer%>");
-
- update_status(action);
-
- csxhr.get('<%=luci.dispatcher.build_url("admin", "network")%>/cshark_iface_dump_start/' + ifname + '/' + tx_val + '/' + type_val + '/'+ filter_val, null,
- function(x)
- {
- if (!x)
- update_status("failed", "Invalid response on start.");
- else
- update_status("running");
- });
- }
- }
-
- function update_status(status, message)
- {
- switch (status)
- {
- case 'start':
- case 'stop':
- status_msg = msg[status];
- output.innerHTML = loader + status_msg;
- break
-
- case 'running':
- if (capture_running) break;;
-
- output.innerHTML = loader + status_msg;
-
- bt_action.value = '<%:Stop capture%>';
- bt_action.setAttribute('data-action', 'stop');
- capture_running = 1;
- break;
-
- case 'completed':
- case 'failed':
- if (!capture_running) break;
-
- if (status == "completed")
- {
- link_list_update();
- }
-
- output.innerHTML = "<pre>" + message + "</pre>";
- bt_action.value = '<%:Start capture%>';
- bt_action.setAttribute('data-action', 'start');
- bt_action.disabled = false;
- capture_running = 0;
- break;
- }
- }
-
-
- function check_status()
- {
-
- XHR.poll(3, '<%=luci.dispatcher.build_url("admin", "network")%>/cshark_check_status', null,
- function(x, data)
- {
- if (!x)
- {
- if (capture_running)
- update_status("failed", "Invalid response when fetching status.");
-
- return;
- }
- console.log(data)
-
- update_status( (data.status == 1) && "running" || "completed", data.msg);
- })
- }
-
- function link_list_clear()
- {
- var csxhr_del = new XHR();
- csxhr_del.get('<%=luci.dispatcher.build_url("admin", "network")%>/cshark_link_list_clear', null,
- function(x)
- {
- if (!x)
- return false;
-
- link_list_update();
- });
- }
-
-
- function link_list_update()
- {
- var t_link = document.getElementById("t_link_list");
- if (!t_link) return;
-
- var row_count = t_link.rows.length;
- while(--row_count) t_link.deleteRow(row_count);
-
- var cell = t_link.insertRow(-1).insertCell(0);
- cell.colSpan = 2;
- cell.innerHTML = loader;
-
- var csxhr_link = new XHR();
- csxhr_link.get('<%=luci.dispatcher.build_url("admin", "network")%>/cshark_link_list_get', null,
- function(x, entries)
- {
- var row = t_link.deleteRow(1);
-
- if (!x) return;
-
- if (!entries || !entries.length)
- {
- var cell = t_link.insertRow(-1).insertCell(0);
- cell.colSpan = 2;
- cell.innerHTML = '<em><br />There are no captures available yet.</em>';
-
- return;
- }
-
- for (var i = 0, len = entries.length; i < len ; i++)
- {
- var entry = entries[i][0];
- if (!entry) continue;
-
- var data = entry.split(",");
- var url = data[0];
- var timestamp = data[1];
-
- var row = t_link.insertRow(-1);
- row.insertCell(0).innerHTML = '<a href="'+url+'" target="_blank">'+url+'</a>';
- row.insertCell(1).innerHTML = get_date(timestamp);
- }
-
- var cell = t_link.insertRow(-1).insertCell(0);
- cell.colSpan = 2;
- cell.style.textAlign="center";
- cell.innerHTML = '<input type="button" onclick="link_list_clear()" class="cbi-button" value ="<%:Clear list%>" />';
- })
- }
-
- check_status();
- link_list_update();
-</script>
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-07-15 18:06+0000\n"
-"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/ar/>\n"
-"Language: ar\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
-"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
-"X-Generator: Weblate 5.7-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "إجراءات"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "المرشحات"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "واجهه"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "جار التحميل"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "خيارات"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "أي"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "ثواني"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-01-16 16:28+0000\n"
-"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/bg/>\n"
-"Language: bg\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.4-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Действия"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Филтър"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Интерфейс"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Зареждане"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Опции"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2021-10-08 17:53+0000\n"
-"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/"
-"openwrt/luciapplicationscshark/bn_BD/>\n"
-"Language: bn_BD\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.9-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "ক্রিয়া"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "উআরল ক্যাপচার করুন"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "ক্যাপচার লিংক"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "ক্যাপচার এর সময়"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "লিস্ট পরিষ্কার করুন"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "ক্লাউড শার্ক"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "ক্লাউড শার্ক এপিআই টোকেন"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "ক্লাউড শার্ক ইউআরএল"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "ছাঁকনি"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "ইন্টারফেস"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2020-01-10 12:23+0000\n"
-"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/ca/>\n"
-"Language: ca\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 3.10.1\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Accions"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Filtre"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Interfície"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "S’està carregant"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Opcions"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-05-12 14:57+0000\n"
-"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/cs/>\n"
-"Language: cs\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
-"X-Generator: Weblate 5.12-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Akce"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "Zachytit adresu URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Zachytit odkazy"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Doba záznamu"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Vyprázdnit seznam"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "Token ke CloudShark API"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "CloudShark URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Filtr"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Udělit luci-app-cshark přístup do UCI nastavování"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Rozhraní"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Načítání"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Možnosti"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Spustit záznam"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Spustit záznam sítě"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Zastavit záznam"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "Čekání na dokončení zachytávání…"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "Čekání na dokončení nahrávání…"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "libovolné"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "bajtů"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "paketů"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "sekundy/sekund"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "sekundy, pakety, bajty"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "časový limit, bajty, sekundy"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "je třeba, aby hodnota pro [sekundy, pakety, bajty] bylo celé číslo"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2021-11-10 09:10+0000\n"
-"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/da/>\n"
-"Language: da\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.9-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Handlinger"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "Indfang URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Indfangning af links"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Indfangningstid"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Ryd liste"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "CloudShark API-token"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "CloudShark URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Filter"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Giv UCI-adgang til luci-app-cshark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Interface"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Indlæser"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Indstillinger"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Start optagelse"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Start netværksoptagelse"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Stop optagelsen"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "Venter på, at optagelsen er afsluttet..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "Venter på, at upload er færdig..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "enhver"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "bytes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "pakker"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "sekunder"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "sekunder, pakker, bytes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "timeout, bytes, sekunder"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "værdien for [sekunder, pakker, bytes] skal være Integer"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-10-19 18:21+0000\n"
-"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/de/>\n"
-"Language: de\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.8-rc\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Aktionen"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "URL aufnehmen"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Links aufnehmen"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Zeit der Aufnahme"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Liste leeren"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "CloudShark API-Token"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "CloudShark-URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Filter"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Gewähre UCI Zugriff auf luci-app-cshark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Schnittstelle"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Lade"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Optionen"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Aufnahme starten"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Starte Netzwerk-Aufzeichnung"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Stoppe Netzwerk-Aufzeichnung"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "Warte auf Fertigstellung der Netzwerk-Aufzeichnung..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "Warte auf Fertigstellung des Uploads..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "alle"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "Bytes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "Pakete"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "Sekunden"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "Sekunden, Pakete, Bytes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "Timeout, Bytes, Sekunden"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "Wert für [Sekunden, Pakete, Bytes] muss ganzzahlig sein"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2022-11-02 08:08+0000\n"
-"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/el/>\n"
-"Language: el\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.14.2-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr ""
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Διεπαφή"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Φόρτωση"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "οποιαδήποτε"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"POT-Creation-Date: 2019-07-22 17:23-0300\n"
-"PO-Revision-Date: 2024-07-20 20:09+0000\n"
-"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/es/>\n"
-"Language: es\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.7-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Acciones"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "Capturar URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Capturar enlaces"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Capturar hora"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Limpiar lista"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "Token de la API de CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "URL de CloudShark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Filtro"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Conceder acceso UCI para luci-app-cshark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Interfaz"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Cargando"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Opciones"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Iniciar captura"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Iniciar captura de red"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Detener captura"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "Esperando a que se complete la captura..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "Esperando a que se complete la carga..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "cualquiera"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "bytes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "paquetes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "segundos"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "segundos, paquetes, bytes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "tiempo de espera, bytes, segundos"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "el valor para [segundos, paquetes, bytes] debe ser un entero"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-05-03 17:07+0000\n"
-"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/fi/>\n"
-"Language: fi\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.12-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Toiminnot"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "Kaappauksen URL-osoite"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Kaappaa linkit"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Kaappauksen aika"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Tyhjennä lista"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "CloudSharkin rajapinnan poletti"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "CloudSharkin URL-osoite"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Suodatin"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Myönnä UCI-pääsy luci-app-csharkille"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Liitäntä"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Ladataan"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Valinnat"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Aloita kaappaus"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Käynnistä verkon kaappaus"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Pysäytä kaappaus"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "Odotetaan kaappauksen valmistuvan..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "Odotetaan lähetyksen valmistuvan..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "mikä tahansa"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "tavua"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "pakettia"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "sekuntia"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "sekuntia, pakettia, tavua"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "aikakatkaisu, tavua, sekuntia"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "[sekuntien, pakettien, tavujen] arvon on oltava kokonaisluku"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2020-05-10 12:47+0000\n"
-"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/fr/>\n"
-"Language: fr\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 4.1-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Actions"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "Capturer l'URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Capturer les liens"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Capturer le temps"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Vider la liste"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "Jeton d'API de CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "URL de CloudShark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Filtrer"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Accorder tout accès UCI pour luci-app-cshark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Interface"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Chargement"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Options"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Démarrer la capture"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Démarrer la capture du réseau"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Arrêter la capture"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "En attente de la fin de la capture…"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "En attente de la fin du téléversement…"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "tous"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "octets"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "paquets"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "secondes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "secondes, paquets, octets"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "délai d'attente, octets, secondes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "les valeurs pour [secondes, paquets, octets] doivent être entières"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-09-04 19:45+0000\n"
-"Language-Team: Irish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/ga/>\n"
-"Language: ga\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :"
-"(n>6 && n<11) ? 3 : 4;\n"
-"X-Generator: Weblate 5.7.2-rc\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Gníomhartha"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "Gabháil URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Gabháil naisc"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Gabháil am"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Glan an liosta"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "Siorcanna Scamall"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "Comhartha API CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "URL CloudShark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Scagaire"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Deonaigh rochtain UCI do luci-app-cshark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Comhéadan"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Ag lódáil"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Roghanna"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Tosaigh a ghabháil"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Tosaigh ghabháil líonra"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Stop a ghabháil"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "Ag fanacht leis an ngabháil a chríochnú..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "Ag fanacht le huaslódáil a chríochnú..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "aon"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "bearta"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "paicéid"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "soicindí"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "soicindí, paicéid, bearta"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "teorainn ama, bearta, soicind"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr ""
-"ní mór an luach do [soicindí, paicéid, bearta] a bheith ina Shlánuimhir"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-01-10 20:57+0000\n"
-"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/he/>\n"
-"Language: he\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
-"n % 10 == 0) ? 2 : 3));\n"
-"X-Generator: Weblate 5.4-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "פעולות"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "כתובת לכידה"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "קישורי לכידה"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "זמן לכידה"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "פינוי רשימה"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "אסימון API של CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "כתובת של CloudShark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "מסנן"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "הענקת גישת UCI ל־luci-app-cshark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "מנשק"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "בטעינה"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "אפשרויות"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "התחלת לכידה"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "התחלת לכידת רשת"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "עצירת הלכידה"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "בהמתנה להשלמת לכידה…"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "בהמתנה להשלמת העלאה…"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "כלשהו"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "בתים"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "מנות נתונים"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "שניות"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "שניות, מנות נתונים, בתים"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "זמן קצוב, בתים, שניות"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "ערך עבור [שניות, מנות נתונים, בתים] חייב להיות מספר שלם וחיובי"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2019-11-19 16:05+0000\n"
-"Language-Team: Hindi <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/hi/>\n"
-"Language: hi\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 3.10-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "चाल-चलन"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr ""
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-05-07 12:02+0000\n"
-"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/hu/>\n"
-"Language: hu\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.12-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Műveletek"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "URL rögzítése"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Hivatkozások rögzítése"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Idő rögzítése"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Lista törlése"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "CloudShark API token"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "CloudShark URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Szűrő"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "UCI hozzáférés engedélyezése a <em>luci-app-cshark</em> alkalmazásnak"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Csatoló"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Betöltés"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Lehetőségek"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Rögzítés indítása"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Hálózati rögzítés indítása"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Rögzítés leállítása"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "Várakozás a rögzítés befejeződésére…"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "Várakozás a feltöltés befejeződésére…"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "bármely"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "bájt"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "csomag"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "másodperc"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "másodperc, csomag, bájt"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "időkorlát, bájt, másodperc"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "a [másodperc, csomag, bájt] értékének egész számnak kell lennie"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2023-10-16 16:56+0000\n"
-"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/it/>\n"
-"Language: it\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.1\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Azioni"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "Cattura URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Link di cattura"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Tempo di cattura"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Pulisci lista"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "Token API CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "URL CloudShark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Filtro"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Garantisci accesso UCI a luci-app-cshark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Interfaccia"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Caricamento"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Opzioni"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Inizia cattura"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Inizia cattura di rete"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Interrompi cattura"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "In attesa che la cattura finisca..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "In attesa che il caricamento finisca..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "qualsiasi"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "bytes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "pacchetti"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "secondi"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "secondi, pacchetti, bytes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "timeout, bytes, secondi"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "valore per [secondi, pacchetti, bytes] deve essere un intero"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2021-02-11 14:23+0000\n"
-"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/ja/>\n"
-"Language: ja\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.5-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "操作"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "キャプチャURL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "キャプチャリンク"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "キャプチャ時刻"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "一覧をクリア"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "CloudShark API トークン"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "CloudShark URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "フィルター"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "luci-app-csharkにUCIアクセスを許可"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "インターフェース"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "読み込み中"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "オプション"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "キャプチャ開始"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "ネットワークキャプチャ開始"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "キャプチャ停止"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "キャプチャ完了を待機中..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "アップロード完了を待機中..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "すべて"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "バイト"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "パケット"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "秒"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "秒、パケット、バイト"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "タイムアウト、バイト、秒"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "[秒、パケット、バイト] の値は整数でなければなりません"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2022-12-27 13:49+0000\n"
-"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/ko/>\n"
-"Language: ko\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.15.1-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr ""
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "인터페이스"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "불러오는 중"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"PO-Revision-Date: 2024-09-15 21:45+0000\n"
-"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/lt/>\n"
-"Language: lt\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > "
-"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? "
-"1 : 2);\n"
-"X-Generator: Weblate 5.8-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Veiksmai"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "Užfiksuoti „URL“ – saitą"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Užfiksuoti nuorodas"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Užfiksuoti laiką"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Išvalyti sąrašą"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "„CloudShark“"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "„CloudShark API“ žetonas"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "„CloudShark „URL““ – saitas"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Filtras/Filtruoti"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Suteikti „UCI“ prieigą – „luci-app-cshark“"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Sąsaja ir/arba Sietuvas"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Kraunama"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Parinktys"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Pradėti užfiksavimą"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Pradėti tinklo užfiksavimą"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Sustabdyti užfiksavimą"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "Laukiama, kol užfiksavimas bus užbaigtas..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "Laukiama, kol įkėlimas bus užbaigtas..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "bet koks"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "baitai"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "paketai"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "sekundės"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "sekundės, paketai, baitai"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "pasibaigės užklausos laikas, baitai, sekundės"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr ""
-"reikšmė skirta [sekundės, paketai, baitai] turi būti integriniai skaičiai"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2020-02-12 11:01+0000\n"
-"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/mr/>\n"
-"Language: mr\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 3.11-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "क्रिया"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "URL कॅप्चर करा"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "दुवे कॅप्चर करा"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "वेळ कॅप्चर करा"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "यादी साफ करा"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "क्लाउडशार्क"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "क्लाउडशार्क एपीआय टोकन"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "क्लाउडशार्क URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "फिल्टर करा"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "इंटरफेस"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "लोड करीत आहे"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "पर्याय"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "कॅप्चर प्रारंभ करा"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-01-22 09:21+0000\n"
-"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/ms/>\n"
-"Language: ms\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 5.4-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Tindakkan"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr ""
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Antara muka"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-01-03 18:37+0000\n"
-"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/nb_NO/>\n"
-"Language: nb_NO\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.4-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Handlinger"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-#, fuzzy
-msgid "Filter"
-msgstr "Filter"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Grensesnitt"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Laster inn"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Alternativer"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-12-20 20:38+0000\n"
-"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/nl/>\n"
-"Language: nl\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.10-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Acties"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "URL opname"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Links opname"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Tijd opname"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Lijst wissen"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "CloudShark API-token"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "CloudShark-URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Filter"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Verleen UCI-toegang voor luci-app-cshark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Interface"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Laden"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Opties"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Start opname"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Start netwerk opname"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Stop opname"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "Wachten tot de opname voltooid is..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "Wachten tot het uploaden is voltooid..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "elke"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "bytes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "pakketten"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "seconden"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "seconden, pakketten, bytes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "time-out, bytes, seconden"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "waarde voor [seconden, pakketten, bytes] moet een geheel getal zijn"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2023-11-07 22:37+0000\n"
-"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/pl/>\n"
-"Language: pl\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
-"|| n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 5.2-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Akcje"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "Przechwycony adres URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Przechwytywanie łączy"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Czas przechwycenia"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Wyczyść listę"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "Token API CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "URL CloudShark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Filtr"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Przyznaj luci-app-cshark dostęp do UCI"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Interfejs"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Ładowanie"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Opcje"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Rozpocznij przechwytywanie"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Rozpocznij przechwytywanie sieci"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Zatrzymaj przechwytywanie"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "Oczekiwanie na ukończenie przechwytywania..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "Oczekiwanie na zakończenie przesyłania..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "dowolny"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "bajty"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "pakiety"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "sekundy"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "sekundy, pakiety, bajty"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "limit czasu, bajtów, sekund"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "wartość dla [sekund, pakietów, bajtów] musi być liczbą całkowitą"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-07-20 20:09+0000\n"
-"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/pt/>\n"
-"Language: pt\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 5.7-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Ações"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "Capturar URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Capturar ligações"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Capturar tempo"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Limpar lista"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "Token de API do CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "URL do CloudShark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Filtro"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Conceder UCI acesso ao luci-app-cshark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Interface"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "A carregar"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Opções"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Iniciar a captura"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Iniciar captura de rede"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Parar a captura"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "À espera que a captura termine..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "À espera que o envio termine..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "qualquer"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "bytes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "pacotes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "segundos"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "segundos, pacotes, bytes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "timeout, bytes, segundos"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "valor para [segundos, pacotes, bytes] deve ser Inteiro"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2020-05-02 10:21+0000\n"
-"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
-"openwrt/luciapplicationscshark/pt_BR/>\n"
-"Language: pt_BR\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n > 1;\n"
-"X-Generator: Weblate 4.1-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Ações"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "Captura de URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Captura de links"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Tempo de captura"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Limpara a lista"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "Token da API CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "URL do CloudShark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Filtro"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Conceda acesso UCI ao luci-app-cshark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Interface"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Carregando"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Opções"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Iniciar a captura"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Iniciar a captura da rede"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Parar a captura"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "Aguardando a captura ser concluída ..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "Aguardando a conclusão do upload ..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "qualquer"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "bytes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "pacotes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "segundos"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "segundos, pacotes, bytes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "tempo limite, bytes, segundos"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "o valor para [segundos, pacotes, bytes] deve ser Inteiro"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2021-11-17 19:57+0000\n"
-"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/ro/>\n"
-"Language: ro\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
-"20)) ? 1 : 2;\n"
-"X-Generator: Weblate 4.9.1-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Acțiuni"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "URL de captură"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Linkuri de captură"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Timp de captură"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Ștergeți lista"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "Token API pentru CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "CloudShark URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Filtru"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Acordă acces la UCI pentru luci-app-cshark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Interfață"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Încărcare"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Opțiuni"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Începeți captura"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Începeți capturarea rețelei"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Opriți captura"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "Așteptând ca captura să se finalizeze..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "Așteptând ca încărcarea să se finalizeze..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "oricare"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "octeți"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "pachete"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "secunde"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "secunde, pachete, octeți"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "timeout, bytes, secunde"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "valoarea pentru [seconds, packets, bytes] trebuie să fie Integer"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2023-04-04 06:36+0000\n"
-"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/ru/>\n"
-"Language: ru\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
-"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
-"X-Generator: Weblate 4.17-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Действия"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "Захват URL-адреса"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Захват ссылок"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Захват времени"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Очистить список"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "Токен API CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "URL-адрес CloudShark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Фильтр"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Предоставить UCI доступ для luci-app-cshark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Интерфейс"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Загрузка"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Настройки"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Начать захват"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Начать захвата сети"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Остановить захват"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "Ожидание завершения захвата..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "Ожидание завершения отправки..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "любой"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "байт"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "пакетов"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "секунд(ы)"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "секунды, пакеты, байты"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "тайм-аут, байты, секунды"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "значение для [секунд, пакетов, байт] должно быть целым числом"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2022-10-30 16:50+0000\n"
-"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/sk/>\n"
-"Language: sk\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Weblate 4.14.2-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Akcie"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Filter"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Rozhranie"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-#, fuzzy
-msgid "Loading"
-msgstr "Načítava sa"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Voľby"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-03-05 19:16+0000\n"
-"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/sv/>\n"
-"Language: sv\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.10.3-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Åtgärder"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Filter"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Gränssnitt"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Laddar"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Alternativ"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "alla"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "sekunder"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-01-25 16:40+0000\n"
-"Language-Team: Tamil <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/ta/>\n"
-"Language: ta\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.10-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "செயல்கள்"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "முகவரி ஐ பிடிக்கவும்"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "இணைப்புகளைப் பிடிக்கவும்"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "நேரத்தைக் கைப்பற்றுங்கள்"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "தெளிவான பட்டியல்"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "கிளவுட்சார்க்"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "கிளவுட்சார்க் பநிஇ கிள்ளாக்கு"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "கிளவுட்சார்க் முகவரி"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "வடிப்பி"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "லூசி-ஆப்-சிசார்க்குக்கு யுசிஐ அணுகல் வழங்கவும்"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "இடைமுகம்"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "ஏற்றுகிறது"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "விருப்பங்கள்"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "பிடிப்பு தொடங்கு"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "பிணையம் பிடிப்பு தொடங்கவும்"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "பிடிப்பதை நிறுத்துங்கள்"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "பிடிப்பு முடிவடையும் வரை காத்திருக்கிறது ..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "பதிவேற்றம் முடிவடையும் வரை காத்திருக்கிறது ..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "ஏதேனும்"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "பைட்டுகள்"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "பாக்கெட்டுகள்"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "நொடிகள்"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "விநாடிகள், பாக்கெட்டுகள், பைட்டுகள்"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "நேரம் முடிந்தது, பைட்டுகள், விநாடிகள்"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "[விநாடிகள், பாக்கெட்டுகள், பைட்டுகள்] மதிப்பு முழு எண் இருக்க வேண்டும்"
+++ /dev/null
-msgid ""
-msgstr "Content-Type: text/plain; charset=UTF-8"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr ""
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr ""
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr ""
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2021-05-11 11:34+0000\n"
-"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/tr/>\n"
-"Language: tr\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 4.7-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Eylemler"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "URL'leri yakala"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Bağlantıları yakala"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Zamanı yakala"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Listeyi temizle"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "CloudShark API tokeni"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "CloudShark URL'si"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Filtre"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "luci-app-cshark için UCI erişimi verin"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Arayüz"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Yükleniyor"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Seçenekler"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Yakalamayı başlat"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Ağ yakalamasını başlat"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Yakalamayı durdur"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "Yakalamanın tamamlanması bekleniyor..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "Karşıya yüklemenin tamamlanması bekleniyor..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "herhangi"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "bayt"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "paketler"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "saniye"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "saniye, paket, bayt"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "zaman aşımı, bayt, saniye"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "[saniye, paketler, baytlar] değeri tamsayı olmalıdır"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-01-14 00:52+0000\n"
-"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/uk/>\n"
-"Language: uk\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
-"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"X-Generator: Weblate 5.10-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Дії"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "Захоплення URL-адреси"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Захоплення посилань"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Час захоплення"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Очистити список"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "Хмарна акула"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "Маркер CloudShark API"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "URL-адреса CloudShark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Фільтр"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Надайте доступ UCI для luci-app-cshark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Інтерфейс"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Завантаження"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Опції"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Почніть зйомку"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Почніть захоплення мережі"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Зупинити захоплення"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "Очікування завершення зйомки..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "Очікування завершення завантаження..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "будь-який"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "байти"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "пакети"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "секунди"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "секунди, пакети, байти"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "тайм-аут, байти, секунди"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "значення для [секунд, пакетів, байтів] має бути цілим числом"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2023-06-20 08:52+0000\n"
-"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/vi/>\n"
-"Language: vi\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 4.18.1\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "hành động"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "Capture URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Capture links"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Capture time"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Dọn danh sách"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "CloudShark API token"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "CloudShark URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Bộ lọc"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Cấp quyền truy cập UCI cho luci-app-cshark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Giao diện"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Đang tải"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Tuỳ chọn"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Bắt đầu capture"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Bắt đầu network capture"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Dừng capture"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "Đang đợi quá trình capture hoàn tất..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "Đang chờ quá trình tải lên hoàn tất..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "Bất kì"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "bytes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "packets"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "Giây"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "giây, packets , byte"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "thời gian chờ, byte, giây"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "giá trị cho [giây, gói mạng ,byte] phải là Số nguyên"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2024-09-24 00:39+0000\n"
-"Language-Team: Yucateco <https://hosted.weblate.org/projects/openwrt/"
-"luciapplicationscshark/yua/>\n"
-"Language: yua\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=n != 1;\n"
-"X-Generator: Weblate 5.8-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "Acciones"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "Capturar URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "Capturar enlaces"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "Capturar hora"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "Limpiar lista"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "Token de la API de CloudShark"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "URL de CloudShark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "Filtro"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "Conceder acceso UCI para luci-app-cshark"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "Interfaz"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "Cargando"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "Opciones"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "Iniciar captura"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "Iniciar captura de red"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "Detener captura"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "Esperando a que se complete la captura..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "Esperando a que se complete la carga..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "cualquiera"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "bytes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "paquetes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "segundos"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "segundos, paquetes, bytes"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "tiempo de espera, bytes, segundos"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "el valor para [segundos, paquetes, bytes] debe ser un entero"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2023-09-10 09:27+0000\n"
-"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
-"openwrt/luciapplicationscshark/zh_Hans/>\n"
-"Language: zh_Hans\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 5.0.1-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "操作"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "捕获 URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "捕获链接"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "捕获时间"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "清空列表"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "云鲨"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "CloudShark API 令牌"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "云鲨网址"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "过滤器"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "授予UCI访问luci-app-cshark的权限"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "接口"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "加载中"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "选项"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "开始捕获"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "开始网络捕获"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "停止捕获"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "正等待捕获完成…"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "正等待上传完成…"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "任意"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "字节"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "数据包"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "秒"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "秒,数据包,字节"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "超时,字节,秒"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "[秒,数据包,字节] 的值必需为整数"
+++ /dev/null
-msgid ""
-msgstr ""
-"PO-Revision-Date: 2025-06-15 15:48+0000\n"
-"Language-Team: Chinese (Traditional Han script) <https://hosted.weblate.org/"
-"projects/openwrt/luciapplicationscshark/zh_Hant/>\n"
-"Language: zh_Hant\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: Weblate 5.12-dev\n"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:24
-msgid "Actions"
-msgstr "動作"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:72
-msgid "Capture URL"
-msgstr "擷取 URL"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:68
-msgid "Capture links"
-msgstr "擷取連結"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:73
-msgid "Capture time"
-msgstr "擷取時間"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:284
-msgid "Clear list"
-msgstr "清晰的列表"
-
-#: applications/luci-app-cshark/luasrc/controller/cshark.lua:19
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:17
-msgid "CloudShark"
-msgstr "雲鯊"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:27
-msgid "CloudShark API token"
-msgstr "CloudShark API 權杖"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:26
-msgid "CloudShark URL"
-msgstr "CloudShark網址"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:23
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:51
-msgid "Filter"
-msgstr "篩選"
-
-#: applications/luci-app-cshark/root/usr/share/rpcd/acl.d/luci-app-cshark.json:3
-msgid "Grant UCI access for luci-app-cshark"
-msgstr "授予luci-app-cshark存取UCI的權限"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:21
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:28
-msgid "Interface"
-msgstr "介面"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:92
-msgid "Loading"
-msgstr "載入中"
-
-#: applications/luci-app-cshark/luasrc/model/cbi/admin_network/cshark.lua:22
-msgid "Options"
-msgstr "選項"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:54
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:196
-msgid "Start capture"
-msgstr "開始擷取"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:17
-msgid "Start network capture"
-msgstr "開始網路擷取"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:181
-msgid "Stop capture"
-msgstr "停止擷取"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for capture to complete..."
-msgstr "等待擷取完成..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:93
-msgid "Waiting for upload to complete..."
-msgstr "等待上傳完成..."
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:39
-msgid "any"
-msgstr "任何"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:47
-msgid "bytes"
-msgstr "位元組"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:46
-msgid "packets"
-msgstr "封包"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:45
-msgid "seconds"
-msgstr "秒"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:22
-msgid "seconds, packets, bytes"
-msgstr "秒、封包、位元組"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:44
-msgid "timeout, bytes, seconds"
-msgstr "逾時、位元組、秒"
-
-#: applications/luci-app-cshark/luasrc/view/cshark.htm:151
-msgid "value for [seconds, packets, bytes] must be Integer"
-msgstr "[秒,封包,位元組]的值必須為整數"
+++ /dev/null
-{
- "luci-app-cshark": {
- "description": "Grant UCI access for luci-app-cshark",
- "read": {
- "uci": [ "cshark" ]
- },
- "write": {
- "uci": [ "cshark" ]
- }
- }
-}